Shared naming conventions allow teams to collaborate effectively. This rule raises an issue when an open curly brace is not placed at the end of a
line of code.
Noncompliant code example
if(condition)
{
doSomething();
}
Compliant solution
if(condition) {
doSomething();
}
Exceptions
When blocks are inlined (left and right curly braces on the same line), no issue is triggered.
if(condition) {doSomething();}